home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Workbench Add-On
/
Workbench Add-On - Volume 1.iso
/
BBS-Archive
/
Comm
/
AmiTCP30b2.lha
/
src
/
l
/
inet-handler
/
system_includes.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-04-05
|
996b
|
43 lines
/*
* system_includes.h
*
* Author: Tomi Ollila <too@ajk.tele.fi>
*
* Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
* All rights reserved.
*
* Created: Mon Sep 27 09:55:08 1993 too
* Last modified: Sat Oct 16 16:58:46 1993 too
*
* $Id: system_includes.h,v 1.1 1993/10/24 13:03:54 too Exp too $
*
* HISTORY
* $Log: system_includes.h,v $
* Revision 1.1 1993/10/24 13:03:54 too
* Initial revision
*
*/
#ifndef _SYSTEM_INCLUDES_H_
#define _SYSTEM_INCLUDES_H_
#if __GNUC__
#include "inl_exec.h"
#include "inl_dos.h"
#define BASE_EXT_DECL
#define BASE_PAR_DECL struct Library * SocketBase,
#define BASE_PAR_DECL0 struct Library * SocketBase
#include "inl_socket.h"
/*
* Include file to enable transparent program coding using visible SocketBase
* (local or global)
*/
#include "socketbase_in_context.h"
#elif __SASC
#include <proto/exec.h>
#include <proto/dos.h>
#include <proto/socket.h>
#endif /* __GNUC__ */
#endif /* _SYSTEM_INCLUDES_H_ */